home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / ntpath.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  12KB  |  433 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''Common pathname manipulations, WindowsNT/95 version.
  5.  
  6. Instead of importing this module directly, import os and refer to this
  7. module as os.path.
  8. '''
  9. import os
  10. import stat
  11. import sys
  12. __all__ = [
  13.     'normcase',
  14.     'isabs',
  15.     'join',
  16.     'splitdrive',
  17.     'split',
  18.     'splitext',
  19.     'basename',
  20.     'dirname',
  21.     'commonprefix',
  22.     'getsize',
  23.     'getmtime',
  24.     'getatime',
  25.     'getctime',
  26.     'islink',
  27.     'exists',
  28.     'lexists',
  29.     'isdir',
  30.     'isfile',
  31.     'ismount',
  32.     'walk',
  33.     'expanduser',
  34.     'expandvars',
  35.     'normpath',
  36.     'abspath',
  37.     'splitunc',
  38.     'curdir',
  39.     'pardir',
  40.     'sep',
  41.     'pathsep',
  42.     'defpath',
  43.     'altsep',
  44.     'extsep',
  45.     'devnull',
  46.     'realpath',
  47.     'supports_unicode_filenames']
  48. curdir = '.'
  49. pardir = '..'
  50. extsep = '.'
  51. sep = '\\'
  52. pathsep = ';'
  53. altsep = '/'
  54. defpath = '.;C:\\bin'
  55. if 'ce' in sys.builtin_module_names:
  56.     defpath = '\\Windows'
  57. elif 'os2' in sys.builtin_module_names:
  58.     altsep = '/'
  59.  
  60. devnull = 'nul'
  61.  
  62. def normcase(s):
  63.     '''Normalize case of pathname.
  64.  
  65.     Makes all characters lowercase and all slashes into backslashes.'''
  66.     return s.replace('/', '\\').lower()
  67.  
  68.  
  69. def isabs(s):
  70.     '''Test whether a path is absolute'''
  71.     s = splitdrive(s)[1]
  72.     if s != '':
  73.         pass
  74.     return s[:1] in '/\\'
  75.  
  76.  
  77. def join(a, *p):
  78.     '''Join two or more pathname components, inserting "\\" as needed'''
  79.     path = a
  80.     for b in p:
  81.         b_wins = 0
  82.         if path == '':
  83.             b_wins = 1
  84.         elif isabs(b):
  85.             if path[1:2] != ':' or b[1:2] == ':':
  86.                 b_wins = 1
  87.             elif (len(path) > 3 or len(path) == 3) and path[-1] not in '/\\':
  88.                 b_wins = 1
  89.             
  90.         
  91.         if b_wins:
  92.             path = b
  93.             continue
  94.         None if not len(path) > 0 else b[0] in '/\\'
  95.         None if path[-1] == ':' else b[0] in '/\\'
  96.         path += '\\'
  97.     
  98.     return path
  99.  
  100.  
  101. def splitdrive(p):
  102.     '''Split a pathname into drive and path specifiers. Returns a 2-tuple
  103. "(drive,path)";  either part may be empty'''
  104.     if p[1:2] == ':':
  105.         return (p[0:2], p[2:])
  106.     
  107.     return ('', p)
  108.  
  109.  
  110. def splitunc(p):
  111.     """Split a pathname into UNC mount point and relative path specifiers.
  112.  
  113.     Return a 2-tuple (unc, rest); either part may be empty.
  114.     If unc is not empty, it has the form '//host/mount' (or similar
  115.     using backslashes).  unc+rest is always the input path.
  116.     Paths containing drive letters never have an UNC part.
  117.     """
  118.     if p[1:2] == ':':
  119.         return ('', p)
  120.     
  121.     firstTwo = p[0:2]
  122.     if firstTwo == '//' or firstTwo == '\\\\':
  123.         normp = normcase(p)
  124.         index = normp.find('\\', 2)
  125.         if index == -1:
  126.             return ('', p)
  127.         
  128.         index = normp.find('\\', index + 1)
  129.         if index == -1:
  130.             index = len(p)
  131.         
  132.         return (p[:index], p[index:])
  133.     
  134.     return ('', p)
  135.  
  136.  
  137. def split(p):
  138.     '''Split a pathname.
  139.  
  140.     Return tuple (head, tail) where tail is everything after the final slash.
  141.     Either part may be empty.'''
  142.     (d, p) = splitdrive(p)
  143.     i = len(p)
  144.     while i and p[i - 1] not in '/\\':
  145.         i = i - 1
  146.     head = p[:i]
  147.     tail = p[i:]
  148.     head2 = head
  149.     while head2 and head2[-1] in '/\\':
  150.         head2 = head2[:-1]
  151.     if not head2:
  152.         pass
  153.     head = head
  154.     return (d + head, tail)
  155.  
  156.  
  157. def splitext(p):
  158.     '''Split the extension from a pathname.
  159.  
  160.     Extension is everything from the last dot to the end.
  161.     Return (root, ext), either part may be empty.'''
  162.     i = p.rfind('.')
  163.     if i <= max(p.rfind('/'), p.rfind('\\')):
  164.         return (p, '')
  165.     else:
  166.         return (p[:i], p[i:])
  167.  
  168.  
  169. def basename(p):
  170.     '''Returns the final component of a pathname'''
  171.     return split(p)[1]
  172.  
  173.  
  174. def dirname(p):
  175.     '''Returns the directory component of a pathname'''
  176.     return split(p)[0]
  177.  
  178.  
  179. def commonprefix(m):
  180.     '''Given a list of pathnames, returns the longest common leading component'''
  181.     if not m:
  182.         return ''
  183.     
  184.     s1 = min(m)
  185.     s2 = max(m)
  186.     n = min(len(s1), len(s2))
  187.     for i in xrange(n):
  188.         if s1[i] != s2[i]:
  189.             return s1[:i]
  190.             continue
  191.     
  192.     return s1[:n]
  193.  
  194.  
  195. def getsize(filename):
  196.     '''Return the size of a file, reported by os.stat()'''
  197.     return os.stat(filename).st_size
  198.  
  199.  
  200. def getmtime(filename):
  201.     '''Return the last modification time of a file, reported by os.stat()'''
  202.     return os.stat(filename).st_mtime
  203.  
  204.  
  205. def getatime(filename):
  206.     '''Return the last access time of a file, reported by os.stat()'''
  207.     return os.stat(filename).st_atime
  208.  
  209.  
  210. def getctime(filename):
  211.     '''Return the creation time of a file, reported by os.stat().'''
  212.     return os.stat(filename).st_ctime
  213.  
  214.  
  215. def islink(path):
  216.     '''Test for symbolic link.  On WindowsNT/95 always returns false'''
  217.     return False
  218.  
  219.  
  220. def exists(path):
  221.     '''Test whether a path exists'''
  222.     
  223.     try:
  224.         st = os.stat(path)
  225.     except os.error:
  226.         return False
  227.  
  228.     return True
  229.  
  230. lexists = exists
  231.  
  232. def isdir(path):
  233.     '''Test whether a path is a directory'''
  234.     
  235.     try:
  236.         st = os.stat(path)
  237.     except os.error:
  238.         return False
  239.  
  240.     return stat.S_ISDIR(st.st_mode)
  241.  
  242.  
  243. def isfile(path):
  244.     '''Test whether a path is a regular file'''
  245.     
  246.     try:
  247.         st = os.stat(path)
  248.     except os.error:
  249.         return False
  250.  
  251.     return stat.S_ISREG(st.st_mode)
  252.  
  253.  
  254. def ismount(path):
  255.     '''Test whether a path is a mount point (defined as root of drive)'''
  256.     (unc, rest) = splitunc(path)
  257.     if unc:
  258.         return rest in ('', '/', '\\')
  259.     
  260.     p = splitdrive(path)[1]
  261.     if len(p) == 1:
  262.         pass
  263.     return p[0] in '/\\'
  264.  
  265.  
  266. def walk(top, func, arg):
  267.     """Directory tree walk with callback function.
  268.  
  269.     For each directory in the directory tree rooted at top (including top
  270.     itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
  271.     dirname is the name of the directory, and fnames a list of the names of
  272.     the files and subdirectories in dirname (excluding '.' and '..').  func
  273.     may modify the fnames list in-place (e.g. via del or slice assignment),
  274.     and walk will only recurse into the subdirectories whose names remain in
  275.     fnames; this can be used to implement a filter, or to impose a specific
  276.     order of visiting.  No semantics are defined for, or required of, arg,
  277.     beyond that arg is always passed to func.  It can be used, e.g., to pass
  278.     a filename pattern, or a mutable object designed to accumulate
  279.     statistics.  Passing None for arg is common."""
  280.     
  281.     try:
  282.         names = os.listdir(top)
  283.     except os.error:
  284.         return None
  285.  
  286.     func(arg, top, names)
  287.     exceptions = ('.', '..')
  288.     for name in names:
  289.         if name not in exceptions:
  290.             name = join(top, name)
  291.             if isdir(name):
  292.                 walk(name, func, arg)
  293.             
  294.         isdir(name)
  295.     
  296.  
  297.  
  298. def expanduser(path):
  299.     '''Expand ~ and ~user constructs.
  300.  
  301.     If user or $HOME is unknown, do nothing.'''
  302.     if path[:1] != '~':
  303.         return path
  304.     
  305.     i = 1
  306.     n = len(path)
  307.     while i < n and path[i] not in '/\\':
  308.         i = i + 1
  309.     if i == 1:
  310.         if 'HOME' in os.environ:
  311.             userhome = os.environ['HOME']
  312.         elif 'HOMEPATH' not in os.environ:
  313.             return path
  314.         else:
  315.             
  316.             try:
  317.                 drive = os.environ['HOMEDRIVE']
  318.             except KeyError:
  319.                 drive = ''
  320.  
  321.             userhome = join(drive, os.environ['HOMEPATH'])
  322.     else:
  323.         return path
  324.     return userhome + path[i:]
  325.  
  326.  
  327. def expandvars(path):
  328.     '''Expand shell variables of form $var and ${var}.
  329.  
  330.     Unknown variables are left unchanged.'''
  331.     if '$' not in path:
  332.         return path
  333.     
  334.     import string as string
  335.     varchars = string.ascii_letters + string.digits + '_-'
  336.     res = ''
  337.     index = 0
  338.     pathlen = len(path)
  339.     while index < pathlen:
  340.         c = path[index]
  341.         if c == "'":
  342.             path = path[index + 1:]
  343.             pathlen = len(path)
  344.             
  345.             try:
  346.                 index = path.index("'")
  347.                 res = res + "'" + path[:index + 1]
  348.             except ValueError:
  349.                 res = res + path
  350.                 index = pathlen - 1
  351.             except:
  352.                 None<EXCEPTION MATCH>ValueError
  353.             
  354.  
  355.         None<EXCEPTION MATCH>ValueError
  356.         if c == '$':
  357.             None if path[index + 1:index + 2] == '$' else None<EXCEPTION MATCH>ValueError
  358.             var = ''
  359.             index = index + 1
  360.             c = path[index:index + 1]
  361.             while c != '' and c in varchars:
  362.                 var = var + c
  363.                 index = index + 1
  364.                 c = path[index:index + 1]
  365.             if var in os.environ:
  366.                 res = res + os.environ[var]
  367.             
  368.             if c != '':
  369.                 res = res + c
  370.             
  371.         else:
  372.             res = res + c
  373.         index = index + 1
  374.     return res
  375.  
  376.  
  377. def normpath(path):
  378.     '''Normalize path, eliminating double slashes, etc.'''
  379.     path = path.replace('/', '\\')
  380.     (prefix, path) = splitdrive(path)
  381.     if prefix == '':
  382.         while path[:1] == '\\':
  383.             prefix = prefix + '\\'
  384.             path = path[1:]
  385.     elif path.startswith('\\'):
  386.         prefix = prefix + '\\'
  387.         path = path.lstrip('\\')
  388.     
  389.     comps = path.split('\\')
  390.     i = 0
  391.     while i < len(comps):
  392.         None if comps[i] in ('.', '') else prefix.endswith('\\')
  393.         i += 1
  394.     if not prefix and not comps:
  395.         comps.append('.')
  396.     
  397.     return prefix + '\\'.join(comps)
  398.  
  399.  
  400. try:
  401.     from nt import _getfullpathname
  402. except ImportError:
  403.     
  404.     def abspath(path):
  405.         '''Return the absolute version of a path.'''
  406.         if not isabs(path):
  407.             path = join(os.getcwd(), path)
  408.         
  409.         return normpath(path)
  410.  
  411.  
  412.  
  413. def abspath(path):
  414.     '''Return the absolute version of a path.'''
  415.     if path:
  416.         
  417.         try:
  418.             path = _getfullpathname(path)
  419.         except WindowsError:
  420.             pass
  421.         except:
  422.             None<EXCEPTION MATCH>WindowsError
  423.         
  424.  
  425.     None<EXCEPTION MATCH>WindowsError
  426.     path = os.getcwd()
  427.     return normpath(path)
  428.  
  429. realpath = abspath
  430. if hasattr(sys, 'getwindowsversion'):
  431.     pass
  432. supports_unicode_filenames = sys.getwindowsversion()[3] >= 2
  433.